type net/http.http2clientConnPool

14 uses

	net/http (current package)
		h2_bundle.go#L758: 	_ http2clientConnPoolIdleCloser = (*http2clientConnPool)(nil)
		h2_bundle.go#L763: type http2clientConnPool struct {
		h2_bundle.go#L775: func (p *http2clientConnPool) GetClientConn(req *Request, addr string) (*http2ClientConn, error) {
		h2_bundle.go#L784: func (p *http2clientConnPool) getClientConn(req *Request, addr string, dialOnMiss bool) (*http2ClientConn, error) {
		h2_bundle.go#L835: 	p *http2clientConnPool
		h2_bundle.go#L845: func (p *http2clientConnPool) getStartDialLocked(ctx context.Context, addr string) *http2dialCall {
		h2_bundle.go#L881: func (p *http2clientConnPool) addConnIfNeeded(key string, t *http2Transport, c *tls.Conn) (used bool, err error) {
		h2_bundle.go#L912: 	p    *http2clientConnPool
		h2_bundle.go#L934: func (p *http2clientConnPool) addConnLocked(key string, cc *http2ClientConn) {
		h2_bundle.go#L950: func (p *http2clientConnPool) MarkDead(cc *http2ClientConn) {
		h2_bundle.go#L968: func (p *http2clientConnPool) closeIdleConnections() {
		h2_bundle.go#L1002: type http2noDialClientConnPool struct{ *http2clientConnPool }
		h2_bundle.go#L6906: 	connPool := new(http2clientConnPool)
		h2_bundle.go#L6957: 		t.connPoolOrDef = &http2clientConnPool{t: t}